diff options
| author | zephex-alt <[email protected]> | 2024-05-03 04:02:21 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-03 04:02:21 +0000 |
| commit | 446eb6d593b97b7d11bc779afe02fdd621d79893 (patch) | |
| tree | 1ba6acc811305d0be2aa1da06c183cfcc4f4d1ca /src/app/manga/[title]/[id] | |
| parent | added edge runtime line (diff) | |
| download | dramalama-446eb6d593b97b7d11bc779afe02fdd621d79893.tar.xz dramalama-446eb6d593b97b7d11bc779afe02fdd621d79893.zip | |
font changes, video player changes and other minor changes
Diffstat (limited to 'src/app/manga/[title]/[id]')
| -rw-r--r-- | src/app/manga/[title]/[id]/info.module.css | 15 | ||||
| -rw-r--r-- | src/app/manga/[title]/[id]/page.jsx | 10 |
2 files changed, 11 insertions, 14 deletions
diff --git a/src/app/manga/[title]/[id]/info.module.css b/src/app/manga/[title]/[id]/info.module.css index 1df4583..0420401 100644 --- a/src/app/manga/[title]/[id]/info.module.css +++ b/src/app/manga/[title]/[id]/info.module.css @@ -18,9 +18,8 @@ }
.TitleContainer p {
- font-family: "Lexend Deca", serif;
font-size: 40px;
- font-weight: 1000;
+ font-weight: 700;
}
.TitleContainer img {
@@ -30,13 +29,11 @@ .MangaDescription {
color: white;
- font-family: "Atkinson Hyperlegible", serif;
max-width: 98%;
margin: -10px auto;
}
.Description h2 {
- font-family: "Lexend Deca", serif;
color: gray;
}
@@ -46,14 +43,12 @@ .MangaReleaseYear {
margin-top: 10px;
- font-family: "Poppins", serif;
}
.GenreContainer {
margin-top: 5px;
display: flex;
align-items: center;
- font-family: "Poppins", serif;
}
.GenreText {
@@ -81,8 +76,6 @@ .MangaRatings {
display: flex;
margin-top: 10px;
- font-family: "Poppins", serif;
- /* justify-content: center; */
}
.MangaRatings span {
@@ -98,7 +91,6 @@ .CharactersContainer h2 {
color: gray;
- font-family: "Lexend Deca", serif;
}
.Character {
@@ -130,7 +122,6 @@ text-align: center;
width: 110px;
color: white;
- font-family: "Atkinson Hyperlegible", serif;
}
.CharacterEntry img {
@@ -149,7 +140,6 @@ .ChapterTitle {
color: white;
- font-family: "Lexend Deca", serif;
font-size: 32px;
}
@@ -183,10 +173,10 @@ background-color: #3d3d3d;
cursor: pointer;
transition: background-color 100ms ease-in-out;
+ font-family: "Lexend Deca";
}
.ChapterContainer button p {
- font-family: "Atkinson Hyperlegible", serif;
margin: 2px;
}
@@ -203,7 +193,6 @@ }
.linksNotFound {
- font-family: "Atkinson Hyperlegible", serif;
color: white;
font-size: 18px;
display: flex;
diff --git a/src/app/manga/[title]/[id]/page.jsx b/src/app/manga/[title]/[id]/page.jsx index 76d7177..9d60e0a 100644 --- a/src/app/manga/[title]/[id]/page.jsx +++ b/src/app/manga/[title]/[id]/page.jsx @@ -15,6 +15,14 @@ export default async function MangaInfo({ params }) { redirect("/404");
}
+ let description;
+ if (!data.description) {
+ description =
+ "Sorry but description for this particular manga was not found.";
+ } else {
+ description = data.description.split("<br>")[0];
+ }
+
PreFetchChaterLinks(data.chapters);
return (
@@ -53,7 +61,7 @@ export default async function MangaInfo({ params }) { <div className={styles.MangaDescription}>
<div className={styles.Description}>
<h2>Description</h2>
- <p>{data.description.split("<br")[0]}</p>
+ <p>{description}</p>
</div>
<div className={styles.MangaReleaseYear}>
|